home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™ 1987-1994 / MacHack™ '88 / Other stuff / CLIP stuff / CLIP headers / std.h < prev    next >
Encoding:
Text File  |  1986-03-19  |  703 b   |  26 lines  |  [TEXT/FstE]

  1. /*  Copyright (c)   Mar, 1986   UMMC.  All rights reserved
  2.  
  3. Filename:       std.h
  4.  
  5. Abstract:       This module defines the standard system interface for the CLIP environment.
  6.  
  7. Environment:    UM/CLIP
  8.  
  9. Revision History:
  10.     Rev #        Date         Auth      Reason
  11.     -----   ----------     -----        ----------------------------------
  12.     0.0     18-mar-86   js      original implementation
  13.     0.1     19-mar-86   daf     redefine boolean
  14.     
  15. =========================================================================*/
  16.  
  17.  
  18. /* define variable types */
  19.  
  20. typedef     int         INT;
  21. typedef     float   FLOAT;
  22. typedef     double  DOUBLE;
  23. typedef     INT         ERRCODE;
  24. typedef     Boolean BOOL;
  25.  
  26.